Step 8:

A control flow statement regulates the order in which statements get executed. The for 
loop and the if statement are both examples of control flow statements.

A selection statement is a statement that enables a program to execute different pieces of 
code (outcomes) based on a condition.  An example of this is the if-else statement.

A repetition statement is a statement that enables a program to execute the same piece of 
code multiple times.  There are many such structures available in Java: while, for, etc.
